home *** CD-ROM | disk | FTP | other *** search
/ ETO Development Tools 4 / ETO Development Tools 4.iso / Tools - Objects / Macintosh Programmer’s Workshop / MPW 3.1 / MPW / Interfaces / CIncludes / Strings.h < prev    next >
Text File  |  1990-12-13  |  589b  |  33 lines

  1. /************************************************************
  2.  
  3. Created: Thursday, September 7, 1989 at 7:47 PM
  4.     Strings.h
  5.     C Interface to the Macintosh Libraries
  6.  
  7.  
  8.     Copyright Apple Computer, Inc.    1985-1989
  9.     All rights reserved
  10.  
  11. ************************************************************/
  12.  
  13.  
  14. #ifndef __STRINGS__
  15. #define __STRINGS__
  16.  
  17. #ifndef __TYPES__
  18. #include <Types.h>
  19. #endif
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. StringPtr c2pstr(char *aStr);
  25. pascal StringPtr C2PStr(Ptr cString);
  26. char *p2cstr(StringPtr aStr);
  27. pascal Ptr P2CStr(StringPtr pString);
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31.  
  32. #endif
  33.